home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Libraries / CStaticTextPane 1.0 / CStaticTextPane / CStaticTextPane.h < prev   
Encoding:
C/C++ Source or Header  |  1992-06-18  |  404 b   |  16 lines  |  [TEXT/KAHL]

  1. #pragma once
  2.  
  3. #include "CTextPane.h"
  4.  
  5. struct CStaticTextPane : CTextPane
  6. {
  7.     void IStaticTextPane( CView *anEnclosure, CBureaucrat *aSupervisor, short lineWidth );
  8.  
  9.     virtual void UpdateMenus( void );
  10.     virtual void DoCommand( long theCommand );
  11.  
  12.     virtual void DoKeyDown( char theChar, Byte keyCode, EventRecord *macEvent );
  13.     virtual void DoAutoKey( char theChar, Byte keyCode, EventRecord *macEvent );
  14. };
  15.  
  16.